@charset "utf-8";
/* CSS Document */

.header{
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height:80px;
    font-size: 14px;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
    z-index: 9999;
	background:rgba(255,255,255,0.1);
}

.header .container{ width:1200px; margin:0 auto; position:relative;}

.header .logo {
    float: left;
}

.header .logo a{
	display: block;
	width: auto;
    height:80px;
}

.header .logo img {
	height: 80px;
    transform: scale(1, 1);
    transition: all 0.3s  ease;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.header .nav{
	float: right;
	margin-top: -1px;
}

.header .moblie-nav{
	display: none;
}

.header .nav li.navitem{
	position: relative;
	float: left;
	transition: all 0.4s ease-out 0s;
    padding: 0 20px;
    height: 80px;
    line-height: 80px;
}

.header .nav li.navitem>a{
    color: #fff;
    transition: none ease-out .3s;
    -webkit-transition-property: color, background, text-indent, opacity;
    -moz-transition-property: color, background, text-indent, opacity;
    -ms-transition-property: color, background, text-indent, opacity;
    -o-transition-property: color, background, text-indent, opacity;
    transition-property: color, background, text-indent, opacity;
}


.header .nav li.navitem>a.active,
.header .nav li.navitem:hover>a{
    color: #ffba00;
}

.header .nav li.navitem>a {
    color: #fff;
	font-size:16px;
}

.header .nav li.navitem>a::after {
    content: '';
    display: block;
    margin-top: -4px;
    width: 30%;
    height: 3px;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.header .nav li.navitem>a.active::after {
    width: 100%;
    background: #ffba00;
}

.header .nav li.navitem:hover>a::after {
    width: 100%;
    background: #ffba00;
}

.icon-angle-down {
	display: inline;
    margin-left: 10px;
}

.header .nav li.navitem ul.subnav {
    transition: all 0.3s ease-out 0s;
    position: absolute;
    border-top: #838383 3px solid;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 10px, 0px);
    -moz-transform: translate3d(0px, 10px, 0px);
    -webkit-transform: translate3d(0px, 10px, 0px);
    width: 192px;
    background: #fff;
    border: 0;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    top: 80px;
    left: 50%;
    margin-left: -86px;
}

.header .nav li.navitem ul.subnav li {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.header .nav li.navitem ul.subnav li a{
	display: block;
	width: 100%;
    line-height: 20px;
    font-size: 14px;
    color: #666;
    padding: 14px 0;
	text-align: center;
    background: none;
    -webkit-transition: none ease-out .3s;
    -moz-transition: none ease-out .3s;
    -ms-transition: none ease-out .3s;
    -o-transition: none ease-out .3s;
    transition: none ease-out .3s;
    -webkit-transition-property: color, background, text-indent, opacity;
    -moz-transition-property: color, background, text-indent, opacity;
    -ms-transition-property: color, background, text-indent, opacity;
    -o-transition-property: color, background, text-indent, opacity;
    transition-property: color, background, text-indent, opacity;
}

.header .nav li.navitem ul.subnav li a:hover{
	background-color: #ffba00;
	color: #fff;
}

.header .nav li.navitem:hover ul.subnav {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
}


.header.mini {
	z-index: 99999;
	/*background: #fff;
    background: rgba(255, 255, 255, 1);*/
    padding-top: 0px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}


.header.mini .nav li.navitem>a {
    color: #666;
}
.header.mini {
    background: rgba(255,255,255,0.8);
}






body.open{
    overflow: hidden
}

body .wrap{
	position: relative;
	right: 0;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

body.open .wrap{
	z-index: 999;
	right: 240px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);   
}

.moblie-nav-btn{
	position:fixed;
	top:15px;
	right:20px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9999;
}

body.open .moblie-nav-btn{
	right: 240px;
}


body.open .moblie-nav{
	right: 0;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);   
}

.cd-overlay {
  /* shadow layer visible when navigation is active */
  position:fixed;
  height:100%;
  width:100%;
  top:0;
  left:0;
  cursor:pointer;
  background-color:rgba(0, 0, 0, 0.7);
  visibility:hidden;
  opacity:0;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  -webkit-transition:opacity .3s 0s, visibility 0s .3s;
  -moz-transition:opacity .3s 0s, visibility 0s .3s;
  transition:opacity .3s 0s, visibility 0s .3s;
  z-index:999;
}
.cd-overlay.is-visible {
  opacity:1;
  visibility:visible;
  -webkit-transition:opacity .3s 0s, visibility 0s 0s;
  -moz-transition:opacity .3s 0s, visibility 0s 0s;
  transition:opacity .3s 0s, visibility 0s 0s;
}

